home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / lastcall.dxr / 00169_Continue Game.ls < prev    next >
Encoding:
Text File  |  2000-03-27  |  593 b   |  35 lines

  1. property pTimer
  2.  
  3. on beginSprite
  4.   global gDemoVersion, gGameLevel
  5.   pTimer = now()
  6.   resetCursor()
  7.   if gDemoVersion then
  8.     if (gGameLevel <= 1) and inGameMode() then
  9.       nothing()
  10.     else
  11.       alertBeep()
  12.       MUIalert("This feature is disabled in this demo version.", "Disabled Feature")
  13.     end if
  14.   end if
  15. end
  16.  
  17. on exitFrame
  18.   global gGameLevel
  19.   if gGameLevel = 0 then
  20.     go(the frame)
  21.   else
  22.     if (gGameLevel = 1) and inBonusMode() then
  23.       go(the frame)
  24.     else
  25.       waitCursor()
  26.       continueGame()
  27.     end if
  28.   end if
  29. end
  30.  
  31. on keyDown
  32.   waitCursor()
  33.   continueGame()
  34. end
  35.